home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 13 / AMIGAplus Sonderheft 13 (1998)(ICP)(DE)[!].iso / rexx / documentize.bed < prev    next >
Text File  |  1997-12-03  |  646b  |  42 lines

  1. /*
  2. ** $VER: Documentize.bed 1.0 (2.1.96)
  3. **
  4. ** Removes the linefeeds within each paragraph
  5. ** Useful for importing documents into wordprocessors or DTP programs
  6. **
  7. ** Written by Denny Atkin
  8. ** Modified by Martin Taillefer
  9. ** Modified by Marco Negri
  10. */
  11.  
  12. OPTIONS RESULTS
  13.  
  14. SetDisplayLock ON
  15. SetInputLock ON
  16.  
  17. SetStatusBar 'This may take a while on large files...'
  18.  
  19. GetPrefs LeftMargin
  20. left = RESULT
  21. GetPrefs RightMargin
  22. right = RESULT
  23.  
  24. SetPrefs LeftMargin 0
  25. SetPrefs RightMargin 32000
  26.  
  27. MoveSOF
  28.  
  29. RecordMacro QUIET
  30. FormatParagraph
  31. EndMacro
  32.  
  33. PlayMacro 0
  34.  
  35. SetPrefs LeftMargin left
  36. SetPrefs RightMargin right
  37.  
  38. MoveSOF
  39.  
  40. SetDisplayLock OFF
  41. SetInputLock OFF
  42.